home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gas_251.zip / bin_251 / binutils / testsuite / binutils-all / nm.exp < prev    next >
Text File  |  1994-09-29  |  2KB  |  56 lines

  1. #   Copyright (C) 1988, 1990, 1991, 1992 Free Software Foundation, Inc.
  2.  
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  14.  
  15. # Please email any bugs, comments, and/or additions to this file to:
  16. # bug-dejagnu@prep.ai.mit.edu
  17.  
  18. # This file was written by Rob Savoye. (rob@cygnus.com)
  19.  
  20. load_lib util-defs.exp
  21. load_lib utils-lib.exp
  22.  
  23. # extract and print the version number of nm
  24. send_user "Version [binutil_version $NM]"
  25. set test_code $objdir/$subdir/bintest
  26. set addr "\[0-9A-Fa-f\]+"
  27.  
  28. #
  29. # setup the list. Here the layout:
  30. # 1st field is the command line option.
  31. # 2nd field is the pattern to match. NOTE - No variable substitutions can be used!
  32. # 3rd field is an optional message to print with PASS/FAIL.
  33. #
  34. set utility [list { "" ".*\[0-9A-Fa-f\]+ T _?one.*\[0-9A-Fa-f\]+ T _?two.*" "No arguments" } \
  35.          { "-g" ".*\[0-9A-Fa-f\]+ T _?one.*\[0-9A-Fa-f\]+ T _?two.*" "External only" } \
  36.          { "-o" ".*[file tail $test_code]:\[0-9A-Fa-f\]+ T _?one.*[file tail $test_code]:\[0-9A-Fa-f\]+ T _?two.*" "Print input file names" } ]
  37.  
  38. foreach i $utility {
  39.     if [util_test "$NM" "$NMFLAGS [lindex $i 0]" $test_code [lindex $i 1] [lindex $i 2]] then {
  40.     fail "[lindex $i 2]"
  41.     } else {
  42.     pass "[lindex $i 2]"
  43.     }
  44. }
  45.  
  46. #
  47. # FIXME: lots more options to test...
  48. #
  49.  
  50.  
  51.  
  52.  
  53.  
  54.